Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructPredicate<T> Delegate
The type of the struct to compare.
The struct to compare against the criteria defined within the method represented by this delegate.

In This Topic
    StructPredicate<T> Delegate
    In This Topic
    Represents the method that defines a set of criteria and determines whether the specified struct meets those criteria.
    Syntax
    'Declaration
     
    Public Delegate Function StructPredicate(Of T As {New, Struct})( _
       ByRef item As T _
    ) As System.Boolean
    public delegate System.bool StructPredicate<T>( 
       ref T item
    )
    where T: new(), struct

    Parameters

    item
    The struct to compare against the criteria defined within the method represented by this delegate.

    Type Parameters

    T
    The type of the struct to compare.

    Return Value

    true if item meets the criteria defined within the method represented by this delegate; otherwise, false.
    See Also